home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20030409-20031118 / 000177_fdc@columbia.edu_Thu Jun 19 13:21:48 EDT 2003.msg < prev    next >
Text File  |  2020-01-01  |  1KB  |  42 lines

  1. Article: 14406 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: send a \27SO when pressing Ctrl-e
  6. Date: 19 Jun 2003 13:21:08 -0400
  7. Organization: Columbia University
  8. Lines: 25
  9. Message-ID: <bcsre4$enq$1@watsol.cc.columbia.edu>
  10. References: <cd17ed36.0306190913.2719a13@posting.google.com>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1056043269 18788 128.59.39.139 (19 Jun 2003 17:21:09 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 19 Jun 2003 17:21:09 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14406
  16.  
  17. In article <cd17ed36.0306190913.2719a13@posting.google.com>,
  18. Jerry <snaple@earthlink.net> wrote:
  19. : Is there any way to send the ESC[SO (\27SO) when pressing CTRL-e keys?
  20. :  I've tried
  21. : set key \5 \27SO  (the \5 key was given to me when I just typed in set
  22. : key and enter.  It asked "Which key to define".  I went ahead and
  23. : pressed CTRL-E gave me just \5).  It might be that \5 is just the ctrl
  24. : key ;).
  25. :
  26. I'm assuming you want ESC [ S O (letter O), not ESC S O (you said it
  27. both ways above).  The following works:
  28.  
  29.   set key \5 \27[SO
  30.  
  31. So does this:
  32.  
  33.   set key \5 \{27}[SO
  34.  
  35. C-Kermit key definitions are active only in CONNECT mode.  The current
  36. version of C-Kermit is 8.0:
  37.  
  38.   http://www.columbia.edu/kermit/ckermit.html
  39.  
  40. - Frank
  41.